home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from gettext import gettext as _
- from checkbox.plugin import Plugin
-
- class FinalPrompt(Plugin):
-
- def register(self, manager):
- super(FinalPrompt, self).register(manager)
- self._manager.reactor.call_on('prompt-finish', self.prompt_finish)
-
-
- def prompt_finish(self, interface):
- interface.show_final(_('Successfully sent information!'))
-
-
- factory = FinalPrompt
-